How to Export Item wise Name,Closing stock,Value and Price from tally using XML TAGS via http
<ENVELOPE>
<HEADER>
<VERSION>1</VERSION>
<TALLYREQUEST>Export</TALLYREQUEST>
<TYPE>Collection</TYPE>
<ID>All items under Groups</ID>
</HEADER>
<BODY>
<DESC>
<STATICVARIABLES>
<SVCURRENTCOMPANY>company</SVCURRENTCOMPANY>
<SVEXPORTFORMAT>$$SysName:XML</SVEXPORTFORMAT>
</STATICVARIABLES>
<TDL>
<TDLMESSAGE>
<COLLECTION NAME="All items under Groups" ISMODIFY="No">
<TYPE>stock item</TYPE>
<FETCH>Name,Parent,BaseUnits,ClosingBalance,ClosingRate,
ClosingValue,FULLPRICELIST</FETCH>
</COLLECTION>
</TDLMESSAGE>
</TDL>
</DESC>
</BODY>
</ENVELOPE>

A practical, quick reference for accountants, GST practitioners and small business owners.
Last updated: Oct 7, 2025
TallyPrime 6.2 focuses on regional compliance, multilingual invoicing (notably Arabic support), improved auditability with an enhanced edit log, and several bank‑reconciliation and usability improvements. This release is particularly useful for businesses operating in GCC and other multilingual markets.
Export and share invoices in Arabic, English or bilingual PDFs. WhatsApp & email templates support Arabic content.
Invoice Format 2 set as default to align with certain GCC tax authority recommendations; Format 1 still available for compatibility.
Permanent edit logs for changes — useful for compliance and audits. Admins can enable/disable depending on policy.
Improved bank reconciliation summary, manual reconciliation reporting and navigation to reconciled transactions.
<!-- Example: share invoice via WhatsApp (conceptual) -->
1. Generate invoice in TallyPrime
2. Choose Export > PDF (Arabic / English / Bilingual)
3. Use Share > WhatsApp template to send
Note: The exact menu names may vary on your localised build. Always test before rolling out to production.
How to Export Item wise Stock Summary from tally using XML TAGS via http
<ENVELOPE>
<HEADER>
<TALLYREQUEST>Export Data</TALLYREQUEST>
</HEADER>
<BODY>
<EXPORTDATA>
<REQUESTDESC>
<REPORTNAME>Stock Summary</REPORTNAME>
<STATICVARIABLES>
<SVCURRENTCOMPANY>company</SVCURRENTCOMPANY>
<SVEXPORTFORMAT>$$SysName:HTML</SVEXPORTFORMAT>
<SVFROMDate>fromdate</SVFROMDate>
<SVTODATE>todate</SVTODATE>
<EXPLODEFLAG>Yes</EXPLODEFLAG>
</STATICVARIABLES>
</REQUESTDESC>
</EXPORTDATA>
</BODY>
</ENVELOPE>
How to Export data from tally using .NET using c#?
WebRequest Request = WebRequest.Create(TallyUrl.Text);Tally Integration Using XML Read / Write
How to Integrate PHP with Tally using XML
How to export employees List from tally using xml request
How to Enable TCS Calculation on Sale of Goods in Tally ERP 9
Create Sales Order using xml request to Tally erp 9
How to export voucher from tally by using IDs - XML format